home *** CD-ROM | disk | FTP | other *** search
/ APDL Eductation Resources / APDL Eductation Resources.iso / earthmap / _earthmap / maps / getpar / makefile < prev   
Encoding:
Makefile  |  1989-04-01  |  309 b   |  16 lines

  1. FILES= getch_.c getpar.c getpar_.c getpar_decode.c getpar_scan.c \
  2.     getpar_string_store.c file.c fsize.c alloc.c
  3.  
  4. all: getparlib.a
  5.  
  6. getparlib.a:  $(FILES)
  7.     rm -f *.o
  8.     cc -O -c $?
  9.     ar cr getparlib.a *.o
  10.     ranlib getparlib.a
  11.     rm -f *.o
  12.  
  13. getpar_scan.c: getpar_scan.l
  14.     lex getpar_scan.l
  15.     mv lex.yy.c getpar_scan.c
  16.